DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / Add Method / Add(IEnumerable<DicomAttribute>) Method
A list of DicomAttribute to add






In This Topic
    Add(IEnumerable<DicomAttribute>) Method
    In This Topic
    Add a collection of DicomAttributes to the DataSet the underlying DicomDataSet
    Syntax
    'Declaration
     
    
    Public Overloads Sub Add( _
       ByVal attributes As System.Collections.Generic.IEnumerable(Of DicomAttribute) _
    ) 
    'Usage
     
    
    Dim instance As DicomImage
    Dim attributes As System.Collections.Generic.IEnumerable(Of DicomAttribute)
     
    instance.Add(attributes)
    public void Add( 
       System.Collections.Generic.IEnumerable<DicomAttribute> attributes
    )
    public procedure Add( 
        attributes: System.Collections.Generic.IEnumerable
    ); 
    public function Add( 
       attributes : System.Collections.Generic.IEnumerable
    );
    public: void Add( 
       System.Collections.Generic.IEnumerable<DicomAttribute*>* attributes
    ) 
    public:
    void Add( 
       System.Collections.Generic.IEnumerable<DicomAttribute^>^ attributes
    ) 

    Parameters

    attributes
    A list of DicomAttribute to add
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also